home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
By the Book
/
Learn C++ (CodeWarrior)
/
Chap 04.07 - scopeTester
/
scopeTester.cp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-10-20
|
308 b
|
20 lines
|
[
TEXT/CWIE
]
#include <iostream.h>
short myValue = 5;
int main()
{
short yourValue = myValue;
cout << "yourValue: " << yourValue << "\n";
short myValue = 10;
yourValue = myValue;
cout << "yourValue: " << yourValue << "\n";
yourValue = ::myValue;
cout << "yourValue: " << yourValue << "\n";
return 0;
}